From: Hauke Mehrtens Date: Sat, 6 Jun 2015 20:07:23 +0000 (+0200) Subject: rhashtable: add missing import X-Git-Tag: archive/raspbian/4.9.13-1+rpi1~10^2~4370^2~11 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=6d7954130c8d7100b7aba3c986fc4eefedf1a1ad;p=linux-4.9.git rhashtable: add missing import rhashtable uses EXPORT_SYMBOL_GPL() without importing linux/export.h directly it is only imported indirectly through some other includes. Signed-off-by: Hauke Mehrtens Signed-off-by: David S. Miller --- diff --git a/lib/rhashtable.c b/lib/rhashtable.c index 4396434e4715..8609378e6505 100644 --- a/lib/rhashtable.c +++ b/lib/rhashtable.c @@ -26,6 +26,7 @@ #include #include #include +#include #define HASH_DEFAULT_SIZE 64UL #define HASH_MIN_SIZE 4U